home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / make-367.lha / make-3.67 / make.info-5 (.txt) < prev    next >
GNU Info File  |  1993-05-16  |  50KB  |  919 lines

  1. This is Info file make.info, produced by Makeinfo-1.54 from the input
  2. file make.texinfo.
  3.    This file documents the GNU Make utility, which determines
  4. automatically which pieces of a large program need to be recompiled,
  5. and issues the commands to recompile them.
  6.    This is Edition 0.42, last updated 14 May 1993, of `The GNU Make
  7. Manual', for `make', Version 3.66 Beta.
  8.    Copyright (C) 1988, '89, '90, '91, '92, '93 Free Software
  9. Foundation, Inc.
  10.    Permission is granted to make and distribute verbatim copies of this
  11. manual provided the copyright notice and this permission notice are
  12. preserved on all copies.
  13.    Permission is granted to copy and distribute modified versions of
  14. this manual under the conditions for verbatim copying, provided also
  15. that the section entitled "GNU General Public License" is included
  16. exactly as in the original, and provided that the entire resulting
  17. derived work is distributed under the terms of a permission notice
  18. identical to this one.
  19.    Permission is granted to copy and distribute translations of this
  20. manual into another language, under the above conditions for modified
  21. versions, except that the text of the translations of the section
  22. entitled "GNU General Public License" must be approved for accuracy by
  23. the Foundation.
  24. File: make.info,  Node: Running,  Next: Implicit Rules,  Prev: Functions,  Up: Top
  25. How to Run `make'
  26. *****************
  27.    A makefile that says how to recompile a program can be used in more
  28. than one way.  The simplest use is to recompile every file that is out
  29. of date.  Usually, makefiles are written so that if you run `make' with
  30. no arguments, it does just that.
  31.    But you might want to update only some of the files; you might want
  32. to use a different compiler or different compiler options; you might
  33. want just to find out which files are out of date without changing them.
  34.    By giving arguments when you run `make', you can do any of these
  35. things and many others.
  36. * Menu:
  37. * Makefile Arguments::          How to specify which makefile to use.
  38. * Goals::                       How to use goal arguments to specify which
  39.                                   parts of the makefile to use.
  40. * Instead of Execution::        How to use mode flags to specify what
  41.                                   kind of thing to do with the commands
  42.                                   in the makefile other than simply
  43.                                   execute them.
  44. * Avoiding Compilation::        How to avoid recompiling certain files.
  45. * Overriding::                  How to override a variable to specify
  46.                                   an alternate compiler and other things.
  47. * Testing::                     How to proceed past some errors, to
  48.                                   test compilation.
  49. * Options Summary::             Summary of Options
  50. File: make.info,  Node: Makefile Arguments,  Next: Goals,  Up: Running
  51. Arguments to Specify the Makefile
  52. =================================
  53.    The way to specify the name of the makefile is with the `-f' or
  54. `--file' option (`--makefile' also works).  For example, `-f altmake'
  55. says to use the file `altmake' as the makefile.
  56.    If you use the `-f' flag several times and follow each `-f' with an
  57. argument, all the specified files are used jointly as makefiles.
  58.    If you do not use the `-f' or `--file' flag, the default is to try
  59. `GNUmakefile', `makefile', and `Makefile', in that order, and use the
  60. first of these three which exists or can be made (*note Writing
  61. Makefiles: Makefiles.).
  62. File: make.info,  Node: Goals,  Next: Instead of Execution,  Prev: Makefile Arguments,  Up: Running
  63. Arguments to Specify the Goals
  64. ==============================
  65.    The "goals" are the targets that `make' should strive ultimately to
  66. update.  Other targets are updated as well if they appear as
  67. dependencies of goals, or dependencies of dependencies of goals, etc.
  68.    By default, the goal is the first target in the makefile (not
  69. counting targets that start with a period).  Therefore, makefiles are
  70. usually written so that the first target is for compiling the entire
  71. program or programs they describe.
  72.    You can specify a different goal or goals with arguments to `make'.
  73. Use the name of the goal as an argument.  If you specify several goals,
  74. `make' processes each of them in turn, in the order you name them.
  75.    Any target in the makefile may be specified as a goal (unless it
  76. starts with `-' or contains an `=', in which case it will be parsed as
  77. a switch or variable definition, respectively).  Even targets not in
  78. the makefile may be specified, if `make' can find implicit rules that
  79. say how to make them.
  80.    One use of specifying a goal is if you want to compile only a part of
  81. the program, or only one of several programs.  Specify as a goal each
  82. file that you wish to remake.  For example, consider a directory
  83. containing several programs, with a makefile that starts like this:
  84.      .PHONY: all
  85.      all: size nm ld ar as
  86.    If you are working on the program `size', you might want to say
  87. `make size' so that only the files of that program are recompiled.
  88.    Another use of specifying a goal is to make files that are not
  89. normally made.  For example, there may be a file of debugging output,
  90. or a version of the program that is compiled specially for testing,
  91. which has a rule in the makefile but is not a dependency of the default
  92. goal.
  93.    Another use of specifying a goal is to run the commands associated
  94. with a phony target (*note Phony Targets::.) or empty target (*note
  95. Empty Target Files to Record Events: Empty Targets.).  Many makefiles
  96. contain a phony target named `clean' which deletes everything except
  97. source files.  Naturally, this is done only if you request it
  98. explicitly with `make clean'.  Here is a list of typical phony and
  99. empty target names:
  100. `all'
  101.      Make all the top-level targets the makefile knows about.
  102. `clean'
  103.      Delete all files that are normally created by running `make'.
  104. `mostlyclean'
  105.      Like `clean', but may refrain from deleting a few files that people
  106.      normally don't want to recompile.  For example, the `mostlyclean'
  107.      target for GCC does not delete `libgcc.a', because recompiling it
  108.      is rarely necessary and takes a lot of time.
  109. `distclean'
  110. `realclean'
  111. `clobber'
  112.      Any of these three might be defined to delete everything that would
  113.      not be part of a standard distribution.  For example, this would
  114.      delete configuration files or links that you would normally create
  115.      as preparation for compilation, even if the makefile itself cannot
  116.      create these files.
  117. `install'
  118.      Copy the executable file into a directory that users typically
  119.      search for commands; copy any auxiliary files that the executable
  120.      uses into the directories where it will look for them.
  121. `print'
  122.      Print listings of the source files that have changed.
  123. `tar'
  124.      Create a tar file of the source files.
  125. `shar'
  126.      Create a shell archive (shar file) of the source files.
  127. `dist'
  128.      Create a distribution file of the source files.  This might be a
  129.      tar file, or a shar file, or a compressed version of one of the
  130.      above, or even more than one of the above.
  131. `TAGS'
  132.      Update a tags table for this program.
  133. `check'
  134. `test'
  135.      Perform self tests on the program this makefile builds.
  136. File: make.info,  Node: Instead of Execution,  Next: Avoiding Compilation,  Prev: Goals,  Up: Running
  137. Instead of Executing the Commands
  138. =================================
  139.    The makefile tells `make' how to tell whether a target is up to date,
  140. and how to update each target.  But updating the targets is not always
  141. what you want.  Certain options specify other activities for `make'.
  142. `--just-print'
  143. `--dry-run'
  144. `--recon'
  145.      "No-op".  The activity is to print what commands would be used to
  146.      make the targets up to date, but not actually execute them.
  147. `--touch'
  148.      "Touch".  The activity is to mark the targets as up to date without
  149.      actually changing them.  In other words, `make' pretends to compile
  150.      the targets but does not really change their contents.
  151. `--question'
  152.      "Question".  The activity is to find out silently whether the
  153.      targets are up to date already; but execute no commands in either
  154.      case.  In other words, neither compilation nor output will occur.
  155. `--what-if'
  156. `--assume-new'
  157. `--new-file'
  158.      "What if".  Each `-W' flag is followed by a file name.  The given
  159.      files' modification times are recorded by `make' as being the
  160.      present time, although the actual modification times remain the
  161.      same.  You can use the `-W' flag in conjunction with the `-n' flag
  162.      to see what would happen if you were to modify specific files.
  163.    With the `-n' flag, `make' prints the commands that it would
  164. normally execute but does not execute them.
  165.    With the `-t' flag, `make' ignores the commands in the rules and
  166. uses (in effect) the command `touch' for each target that needs to be
  167. remade.  The `touch' command is also printed, unless `-s' or `.SILENT'
  168. is used.  For speed, `make' does not actually invoke the program
  169. `touch'.  It does the work directly.
  170.    With the `-q' flag, `make' prints nothing and executes no commands,
  171. but the exit status code it returns is zero if and only if the targets
  172. to be considered are already up to date.
  173.    It is an error to use more than one of these three flags in the same
  174. invocation of `make'.
  175.    The `-n', `-t', and `-q' options do not affect command lines that
  176. begin with `+' characters or contain the strings `$(MAKE)' or
  177. `${MAKE}'.  Note that only the line containing the `+' character or the
  178. strings `$(MAKE)' or `${MAKE}' is run regardless of these options.
  179. Other lines in the same rule are not run unless they too begin with `+'
  180. or contain `$(MAKE)' or `${MAKE}' (*Note How the `MAKE' Variable Works:
  181. MAKE Variable.)
  182.    The `-W' flag provides two features:
  183.    * If you also use the `-n' or `-q' flag, you can see what `make'
  184.      would do if you were to modify some files.
  185.    * Without the `-n' or `-q' flag, when `make' is actually executing
  186.      commands, the `-W' flag can direct `make' to act as if some files
  187.      had been modified, without actually modifying the files.
  188.    Note that the options `-p' and `-v' allow you to obtain other
  189. information about `make' or about the makefiles in use (*note Summary
  190. of Options: Options Summary.).
  191. File: make.info,  Node: Avoiding Compilation,  Next: Overriding,  Prev: Instead of Execution,  Up: Running
  192. Avoiding Recompilation of Some Files
  193. ====================================
  194.    Sometimes you may have changed a source file but you do not want to
  195. recompile all the files that depend on it.  For example, suppose you
  196. add a macro or a declaration to a header file that many other files
  197. depend on.  Being conservative, `make' assumes that any change in the
  198. header file requires recompilation of all dependent files, but you know
  199. that they do not need to be recompiled and you would rather not waste
  200. the time waiting for them to compile.
  201.    If you anticipate the problem before changing the header file, you
  202. can use the `-t' flag.  This flag tells `make' not to run the commands
  203. in the rules, but rather to mark the target up to date by changing its
  204. last-modification date.  You would follow this procedure:
  205.   1. Use the command `make' to recompile the source files that really
  206.      need recompilation.
  207.   2. Make the changes in the header files.
  208.   3. Use the command `make -t' to mark all the object files as up to
  209.      date.  The next time you run `make', the changes in the header
  210.      files will not cause any recompilation.
  211.    If you have already changed the header file at a time when some files
  212. do need recompilation, it is too late to do this.  Instead, you can use
  213. the `-o FILE' flag, which marks a specified file as "old" (*note
  214. Summary of Options: Options Summary.).  This means that the file itself
  215. will not be remade, and nothing else will be remade on its account.
  216. Follow this procedure:
  217.   1. Recompile the source files that need compilation for reasons
  218.      independent of the particular header file, with `make -o
  219.      HEADERFILE'.  If several header files are involved, use a separate
  220.      `-o' option for each header file.
  221.   2. Touch all the object files with `make -t'.
  222. File: make.info,  Node: Overriding,  Next: Testing,  Prev: Avoiding Compilation,  Up: Running
  223. Overriding Variables
  224. ====================
  225.    An argument that contains `=' specifies the value of a variable:
  226. `V=X' sets the value of the variable V to X.  If you specify a value in
  227. this way, all ordinary assignments of the same variable in the makefile
  228. are ignored; we say they have been "overridden" by the command line
  229. argument.
  230.    The most common way to use this facility is to pass extra flags to
  231. compilers.  For example, in a properly written makefile, the variable
  232. `CFLAGS' is included in each command that runs the C compiler, so a
  233. file `foo.c' would be compiled something like this:
  234.      cc -c $(CFLAGS) foo.c
  235.    Thus, whatever value you set for `CFLAGS' affects each compilation
  236. that occurs.  The makefile probably specifies the usual value for
  237. `CFLAGS', like this:
  238.      CFLAGS=-g
  239.    Each time you run `make', you can override this value if you wish.
  240. For example, if you say `make CFLAGS='-g -O'', each C compilation will
  241. be done with `cc -c -g -O'.  (This illustrates how you can use quoting
  242. in the shell to enclose spaces and other special characters in the
  243. value of a variable when you override it.)
  244.    The variable `CFLAGS' is only one of many standard variables that
  245. exist just so that you can change them this way.  *Note Variables Used
  246. by Implicit Rules: Implicit Variables, for a complete list.
  247.    You can also program the makefile to look at additional variables of
  248. your own, giving the user the ability to control other aspects of how
  249. the makefile works by changing the variables.
  250.    When you override a variable with a command argument, you can define
  251. either a recursively-expanded variable or a simply-expanded variable.
  252. The examples shown above make a recursively-expanded variable; to make a
  253. simply-expanded variable, write `:=' instead of `='.  But, unless you
  254. want to include a variable reference or function call in the *value*
  255. that you specify, it makes no difference which kind of variable you
  256. create.
  257.    There is one way that the makefile can change a variable that you
  258. have overridden.  This is to use the `override' directive, which is a
  259. line that looks like this: `override VARIABLE = VALUE' (*note The
  260. `override' Directive: Override Directive.).
  261. File: make.info,  Node: Testing,  Next: Options Summary,  Prev: Overriding,  Up: Running
  262. Testing the Compilation of a Program
  263. ====================================
  264.    Normally, when an error happens in executing a shell command, `make'
  265. gives up immediately, returning a nonzero status.  No further commands
  266. are executed for any target.  The error implies that the goal cannot be
  267. correctly remade, and `make' reports this as soon as it knows.
  268.    When you are compiling a program that you have just changed, this is
  269. not what you want.  Instead, you would rather that `make' try compiling
  270. every file that can be tried, to show you as many compilation errors as
  271. possible.
  272.    On these occasions, you should use the `-k' or `--keep-going' flag.
  273. This tells `make' to continue to consider the other dependencies of the
  274. pending targets, remaking them if necessary, before it gives up and
  275. returns nonzero status.  For example, after an error in compiling one
  276. object file, `make -k' will continue compiling other object files even
  277. though it already knows that linking them will be impossible.  In
  278. addition to continuing after failed shell commands, `make -k' will
  279. continue as much as possible after discovering that it does not know
  280. how to make a target or dependency file.  This will always cause an
  281. error message, but without `-k', it is a fatal error (*note Summary of
  282. Options: Options Summary.).
  283.    The usual behavior of `make' assumes that your purpose is to get the
  284. goals up to date; once `make' learns that this is impossible, it might
  285. as well report the failure immediately.  The `-k' flag says that the
  286. real purpose is to test as much as possible of the changes made in the
  287. program, perhaps to find several independent problems so that you can
  288. correct them all before the next attempt to compile.  This is why Emacs'
  289. `M-x compile' command passes the `-k' flag by default.
  290. File: make.info,  Node: Options Summary,  Prev: Testing,  Up: Running
  291. Summary of Options
  292. ==================
  293.    Here is a table of all the options `make' understands:
  294.      These options are ignored for compatibility with other versions of
  295.      `make'.
  296. `-C DIR'
  297. `--directory DIR'
  298.      Change to directory DIR before reading the makefiles.  If multiple
  299.      `-C' options are specified, each is interpreted relative to the
  300.      previous one: `-C / -C etc' is equivalent to `-C /etc'.  This is
  301.      typically used with recursive invocations of `make' (*note
  302.      Recursive Use of `make': Recursion.).
  303. `--debug'
  304.      Print debugging information in addition to normal processing.  The
  305.      debugging information says which files are being considered for
  306.      remaking, which file-times are being compared and with what
  307.      results, which files actually need to be remade, which implicit
  308.      rules are considered and which are applied--everything interesting
  309.      about how `make' decides what to do.
  310. `--environment-overrides'
  311.      Give variables taken from the environment precedence over
  312.      variables from makefiles.  *Note Variables from the Environment:
  313.      Environment.
  314. `-f FILE'
  315. `--file FILE'
  316. `--makefile FILE'
  317.      Read the file named FILE as a makefile.  *Note Writing Makefiles:
  318.      Makefiles.
  319. `--help'
  320.      Remind you of the options that `make' understands and then exit.
  321. `--ignore-errors'
  322.      Ignore all errors in commands executed to remake files.  *Note
  323.      Errors in Commands: Errors.
  324. `-I DIR'
  325. `--include-dir DIR'
  326.      Specifies a directory DIR to search for included makefiles.  *Note
  327.      Including Other Makefiles: Include.  If several `-I' options are
  328.      used to specify several directories, the directories are searched
  329.      in the order specified.
  330. `-j [JOBS]'
  331. `--jobs [JOBS]'
  332.      Specifies the number of jobs (commands) to run simultaneously.
  333.      With no argument, `make' runs as many jobs simultaneously as
  334.      possible.  If there is more than one `-j' option, the last one is
  335.      effective.  *Note Parallel Execution: Parallel, for more
  336.      information on how commands are run.
  337. `--keep-going'
  338.      Continue as much as possible after an error.  While the target that
  339.      failed, and those that depend on it, cannot be remade, the other
  340.      dependencies of these targets can be processed all the same.
  341.      *Note Testing the Compilation of a Program: Testing.
  342. `-l [LOAD]'
  343. `--load-average [LOAD]'
  344. `--max-load [LOAD]'
  345.      Specifies that no new jobs (commands) should be started if there
  346.      are others jobs running and the load average is at least LOAD (a
  347.      floating-point number).  With no argument, removes a previous load
  348.      limit.  *Note Parallel Execution: Parallel.
  349. `--just-print'
  350. `--dry-run'
  351. `--recon'
  352.      Print the commands that would be executed, but do not execute them.
  353.      *Note Instead of Executing the Commands: Instead of Execution.
  354. `-o FILE'
  355. `--old-file FILE'
  356. `--assume-old FILE'
  357.      Do not remake the file FILE even if it is older than its
  358.      dependencies, and do not remake anything on account of changes in
  359.      FILE.  Essentially the file is treated as very old and its rules
  360.      are ignored.  *Note Avoiding Recompilation of Some Files: Avoiding
  361.      Compilation.
  362. `--print-data-base'
  363.      Print the data base (rules and variable values) that results from
  364.      reading the makefiles; then execute as usual or as otherwise
  365.      specified.  This also prints the version information given by the
  366.      `-v' switch (see below).  To print the data base without trying to
  367.      remake any files, use `make -p -f /dev/null'.
  368. `--question'
  369.      "Question mode".  Do not run any commands, or print anything; just
  370.      return an exit status that is zero if the specified targets are
  371.      already up to date, nonzero otherwise.  *Note Instead of Executing
  372.      the Commands: Instead of Execution.
  373. `--no-builtin-rules'
  374.      Eliminate use of the built-in implicit rules (*note Using Implicit
  375.      Rules: Implicit Rules.).  You can still define your own by writing
  376.      pattern rules (*note Defining and Redefining Pattern Rules:
  377.      Pattern Rules.).  The `-r' option also clears out the default list
  378.      of suffixes for suffix rules (*note Old-Fashioned Suffix Rules:
  379.      Suffix Rules.).  But you can still define your own suffixes with a
  380.      rule for `.SUFFIXES', and then define your own suffix rules.
  381. `--silent'
  382. `--quiet'
  383.      Silent operation; do not print the commands as they are executed.
  384.      *Note Command Echoing: Echoing.
  385. `--no-keep-going'
  386. `--stop'
  387.      Cancel the effect of the `-k' option.  This is never necessary
  388.      except in a recursive `make' where `-k' might be inherited from
  389.      the top-level `make' via `MAKEFLAGS' (*note Recursive Use of
  390.      `make': Recursion.) or if you set `-k' in `MAKEFLAGS' in your
  391.      environment.
  392. `--touch'
  393.      Touch files (mark them up to date without really changing them)
  394.      instead of running their commands.  This is used to pretend that
  395.      the commands were done, in order to fool future invocations of
  396.      `make'.  *Note Instead of Executing the Commands: Instead of
  397.      Execution.
  398. `--version'
  399.      Print the version of the `make' program plus a copyright, a list
  400.      of authors, and a notice that there is no warranty; then exit.
  401. `--print-directory'
  402.      Print a message containing the working directory both before and
  403.      after executing the makefile.  This may be useful for tracking
  404.      down errors from complicated nests of recursive `make' commands.
  405.      *Note Recursive Use of `make': Recursion.  (In practice, you
  406.      rarely need to specify this option since `make' does it for you;
  407.      see *Note The `--print-directory' Option: -w Option.)
  408. `--no-print-directory'
  409.      Disable printing of the working directory under `-w'.  This option
  410.      is useful when `-w' is turned on automatically, but you do not
  411.      want to see the extra messages.  *Note The `--print-directory'
  412.      Option: -w Option.
  413. `-W FILE'
  414. `--what-if FILE'
  415. `--new-file FILE'
  416. `--assume-new FILE'
  417.      Pretend that the target FILE has just been modified.  When used
  418.      with the `-n' flag, this shows you what would happen if you were
  419.      to modify that file.  Without `-n', it is almost the same as
  420.      running a `touch' command on the given file before running `make',
  421.      except that the modification time is changed only in the
  422.      imagination of `make'.  *Note Instead of Executing the Commands:
  423.      Instead of Execution.
  424. File: make.info,  Node: Implicit Rules,  Next: Archives,  Prev: Running,  Up: Top
  425. Using Implicit Rules
  426. ********************
  427.    Certain standard ways of remaking target files are used very often.
  428. For example, one customary way to make an object file is from a C
  429. source file using the C compiler, `cc'.
  430.    "Implicit rules" tell `make' how to use customary techniques so that
  431. you do not have to specify them in detail when you want to use them.
  432. For example, there is an implicit rule for C compilation.  File names
  433. determine which implicit rules are run.  For example, C compilation
  434. typically takes a `.c' file and makes a `.o' file.  So `make' applies
  435. the implicit rule for C compilation when it sees this combination of
  436. file name endings.
  437.    A chain of implicit rules can apply in sequence; for example, `make'
  438. will remake a `.o' file from a `.y' file by way of a `.c' file.
  439.    The built-in implicit rules use several variables in their commands
  440. so that, by changing the values of the variables, you can change the
  441. way the implicit rule works.  For example, the variable `CFLAGS'
  442. controls the flags given to the C compiler by the implicit rule for C
  443. compilation.
  444.    You can define your own implicit rules by writing "pattern rules".
  445.    "Suffix rules" are a more limited way to define implicit rules.
  446. Pattern rules are more general and clearer, but suffix rules are
  447. retained for compatibility.
  448. * Menu:
  449. * Using Implicit::              How to use an existing implicit rule
  450.                                   to get the commands for updating a file.
  451. * Catalogue of Rules::          A list of built-in implicit rules.
  452. * Implicit Variables::          How to change what predefined rules do.
  453. * Chained Rules::               How to use a chain of implicit rules.
  454. * Pattern Rules::               How to define new implicit rules.
  455. * Last Resort::                 How to defining commands for rules
  456.                                   which cannot find any.
  457. * Suffix Rules::                The old-fashioned style of implicit rule.
  458. * Search Algorithm::            The precise algorithm for applying
  459.                                   implicit rules.
  460. File: make.info,  Node: Using Implicit,  Next: Catalogue of Rules,  Up: Implicit Rules
  461. Using Implicit Rules
  462. ====================
  463.    To allow `make' to find a customary method for updating a target
  464. file, all you have to do is refrain from specifying commands yourself.
  465. Either write a rule with no command lines, or don't write a rule at
  466. all.  Then `make' will figure out which implicit rule to use based on
  467. which kind of source file exists or can be made.
  468.    For example, suppose the makefile looks like this:
  469.      foo : foo.o bar.o
  470.              cc -o foo foo.o bar.o $(CFLAGS) $(LDFLAGS)
  471. Because you mention `foo.o' but do not give a rule for it, `make' will
  472. automatically look for an implicit rule that tells how to update it.
  473. This happens whether or not the file `foo.o' currently exists.
  474.    If an implicit rule is found, it can supply both commands and one or
  475. more dependencies (the source files).  You would want to write a rule
  476. for `foo.o' with no command lines if you need to specify additional
  477. dependencies, such as header files, that the implicit rule cannot
  478. supply.
  479.    Each implicit rule has a target pattern and dependency patterns.
  480. There may be many implicit rules with the same target pattern.  For
  481. example, numerous rules make `.o' files: one, from a `.c' file with the
  482. C compiler; another, from a `.p' file with the Pascal compiler; and so
  483. on.  The rule that actually applies is the one whose dependencies exist
  484. or can be made.  So, if you have a file `foo.c', `make' will run the C
  485. compiler; otherwise, if you have a file `foo.p', `make' will run the
  486. Pascal compiler; and so on.
  487.    Of course, when you write the makefile, you know which implicit rule
  488. you want `make' to use, and you know it will choose that one because you
  489. know which possible dependency files are supposed to exist.  *Note
  490. Catalogue of Implicit Rules: Catalogue of Rules, for a catalogue of all
  491. the predefined implicit rules.
  492.    Above, we said an implicit rule applies if the required dependencies
  493. "exist or can be made".  A file "can be made" if it is mentioned
  494. explicitly in the makefile as a target or a dependency, or if an
  495. implicit rule can be recursively found for how to make it.  When an
  496. implicit dependency is the result of another implicit rule, we say that
  497. "chaining" is occurring.  *Note Chains of Implicit Rules: Chained Rules.
  498.    In general, `make' searches for an implicit rule for each target, and
  499. for each double-colon rule, that has no commands.  A file that is
  500. mentioned only as a dependency is considered a target whose rule
  501. specifies nothing, so implicit rule search happens for it.  *Note
  502. Implicit Rule Search Algorithm: Search Algorithm, for the details of
  503. how the search is done.
  504.    Note that explicit dependencies do not influence implicit rule
  505. search.  For example, consider this explicit rule:
  506.      foo.o: foo.p
  507. The dependency on `foo.p' does not necessarily mean that `make' will
  508. remake `foo.o' according to the implicit rule to make an object file, a
  509. `.o' file, from a Pascal source file, a `.p' file.  For example, if
  510. `foo.c' also exists, the implicit rule to make an object file from a C
  511. source file is used instead, because it appears before the Pascal rule
  512. in the list of predefined implicit rules (*note Catalogue of Implicit
  513. Rules: Catalogue of Rules.).
  514.    If you do not want an implicit rule to be used for a target that has
  515. no commands, you can give that target empty commands by writing a
  516. semicolon (*note Defining Empty Commands: Empty Commands.).
  517. File: make.info,  Node: Catalogue of Rules,  Next: Implicit Variables,  Prev: Using Implicit,  Up: Implicit Rules
  518. Catalogue of Implicit Rules
  519. ===========================
  520.    Here is a catalogue of predefined implicit rules which are always
  521. available unless the makefile explicitly overrides or cancels them.
  522. *Note Canceling Implicit Rules: Canceling Rules, for information on
  523. canceling or overriding an implicit rule.  The `-r' or
  524. `--no-builtin-rules' option cancels all predefined rules.
  525.    Not all of these rules will always be defined, even when the `-r'
  526. option is not given.  Many of the predefined implicit rules are
  527. implemented in `make' as suffix rules, so which ones will be defined
  528. depends on the "suffix list" (the list of dependencies of the special
  529. target `.SUFFIXES').  The default suffix list is: `.out', `.a', `.ln',
  530. `.o', `.c', `.cc', `.C', `.p', `.f', `.F', `.r', `.y', `.l', `.s', `.S',
  531. `.mod', `.sym', `.def', `.h', `.info', `.dvi', `.tex', `.texinfo',
  532. `.texi', `.txinfo', `.cweb', `.web', `.sh', `.elc', `.el'.  All of the
  533. implicit rules described below whose dependencies have one of these
  534. suffixes are actually suffix rules.  If you modify the suffix list, the
  535. only predefined suffix rules in effect will be those named by one or
  536. two of the suffixes that are on the list you specify; rules whose
  537. suffixes fail to be on the list are disabled.  *Note Old-Fashioned
  538. Suffix Rules: Suffix Rules, for full details on suffix rules.
  539. Compiling C programs
  540.      `N.o' is made automatically from `N.c' with a command of the form
  541.      `$(CC) -c $(CPPFLAGS) $(CFLAGS)'.
  542. Compiling C++ programs
  543.      `N.o' is made automatically from `N.cc' or `N.C' with a command of
  544.      the form `$(CXX) -c $(CPPFLAGS) $(CXXFLAGS)'.  We encourage you to
  545.      use the suffix `.cc' for C++ source files instead of `.C'.
  546. Compiling Pascal programs
  547.      `N.o' is made automatically from `N.p' with the command `$(PC) -c
  548.      $(PFLAGS)'.
  549. Compiling Fortran and Ratfor programs
  550.      `N.o' is made automatically from `N.r', `N.F' or `N.f' by running
  551.      the Fortran compiler.  The precise command used is as follows:
  552.     `.f'
  553.           `$(FC) -c $(FFLAGS)'.
  554.     `.F'
  555.           `$(FC) -c $(FFLAGS) $(CPPFLAGS)'.
  556.     `.r'
  557.           `$(FC) -c $(FFLAGS) $(RFLAGS)'.
  558. Preprocessing Fortran and Ratfor programs
  559.      `N.f' is made automatically from `N.r' or `N.F'.  This rule runs
  560.      just the preprocessor to convert a Ratfor or preprocessable
  561.      Fortran program into a strict Fortran program.  The precise
  562.      command used is as follows:
  563.     `.F'
  564.           `$(FC) -F $(CPPFLAGS) $(FFLAGS)'.
  565.     `.r'
  566.           `$(FC) -F $(FFLAGS) $(RFLAGS)'.
  567. Compiling Modula-2 programs
  568.      `N.sym' is made from `N.def' with a command of the form `$(M2C)
  569.      $(M2FLAGS) $(DEFFLAGS)'.  `N.o' is made from `N.mod'; the form is:
  570.      `$(M2C) $(M2FLAGS) $(MODFLAGS)'.
  571. Assembling and preprocessing assembler programs
  572.      `N.o' is made automatically from `N.s' by running the assembler,
  573.      `as'.  The precise command is `$(AS) $(ASFLAGS)'.
  574.      `N.s' is made automatically from `N.S' by running the C
  575.      preprocessor, `cpp'.  The precise command is `$(CPP) $(CPPFLAGS)'.
  576. Linking a single object file
  577.      `N' is made automatically from `N.o' by running the linker `ld'
  578.      via the C compiler.  The precise command used is
  579.      `$(CC) $(LDFLAGS) N.o $(LOADLIBES)'.
  580.      This rule does the right thing for a simple program with only one
  581.      source file.  It will also do the right thing if there are multiple
  582.      object files (presumably coming from various other source files),
  583.      one of which has a name matching that of the executable file.
  584.      Thus,
  585.           x: y.o z.o
  586.      when `x.c', `y.c' and `z.c' all exist will execute:
  587.           cc -c x.c -o x.o
  588.           cc -c y.c -o y.o
  589.           cc -c z.c -o z.o
  590.           cc x.o y.o z.o -o x
  591.           rm -f x.o
  592.           rm -f y.o
  593.           rm -f z.o
  594.      In more complicated cases, such as when there is no object file
  595.      whose name derives from the executable file name, you must write
  596.      an explicit command for linking.
  597.      Each kind of file automatically made into `.o' object files will
  598.      be automatically linked by using the compiler (`$(CC)', `$(FC)' or
  599.      `$(PC)'; the C compiler `$(CC)' is used to assemble `.s' files)
  600.      without the `-c' option.  This could be done by using the `.o'
  601.      object files as intermediates, but it is faster to do the
  602.      compiling and linking in one step, so that's how it's done.
  603. Yacc for C programs
  604.      `N.c' is made automatically from `N.y' by running Yacc with the
  605.      command `$(YACC) $(YFLAGS)'.
  606. Lex for C programs
  607.      `N.c' is made automatically from `N.l' by by running Lex.  The
  608.      actual command is `$(LEX) $(LFLAGS)'.
  609. Lex for Ratfor programs
  610.      `N.r' is made automatically from `N.l' by by running Lex.  The
  611.      actual command is `$(LEX) $(LFLAGS)'.
  612.      The convention of using the same suffix `.l' for all Lex files
  613.      regardless of whether they produce C code or Ratfor code makes it
  614.      impossible for `make' to determine automatically which of the two
  615.      languages you are using in any particular case.  If `make' is
  616.      called upon to remake an object file from a `.l' file, it must
  617.      guess which compiler to use.  It will guess the C compiler, because
  618.      that is more common.  If you are using Ratfor, make sure `make'
  619.      knows this by mentioning `N.r' in the makefile.  Or, if you are
  620.      using Ratfor exclusively, with no C files, remove `.c' from the
  621.      list of implicit rule suffixes with:
  622.           .SUFFIXES:
  623.           .SUFFIXES: .o .r .f .l ...
  624. Making Lint Libraries from C, Yacc, or Lex programs
  625.      `N.ln' is made from `N.c' with a command of the form
  626.      `$(LINT) $(LINTFLAGS) $(CPPFLAGS) -i'.  The same command is used
  627.      on the C code produced from `N.y' or `N.l'.
  628. TeX and Web
  629.      `N.dvi' is made from `N.tex' with the command `$(TEX)'.  `N.tex'
  630.      is made from `N.web' with `$(WEAVE)', or from `N.cweb' with
  631.      `$(CWEAVE)'.  `N.p' is made from `N.web' with `$(TANGLE)' and
  632.      `N.c' is made from `N.cweb' with `$(CTANGLE)'.
  633. Texinfo and Info
  634.      `N.dvi' is made from `N.texinfo', `N.texi', or `N.txinfo', with
  635.      the `$(TEXI2DVI)' command.  `N.info' is made from `N.texinfo',
  636.      `N.texi', or `N.txinfo', with the `$(MAKEINFO)' command.
  637.      Any file `N' is extracted if necessary from an RCS file named
  638.      either `N,v' or `RCS/N,v'.  The precise command used is
  639.      `$(CO) $(COFLAGS)'.  `N' will not be extracted from RCS if it
  640.      already exists, even if the RCS file is newer.  The rules for RCS
  641.      are terminal (*note Match-Anything Pattern Rules: Match-Anything
  642.      Rules.), so RCS files cannot be generated from another source;
  643.      they must actually exist.
  644.      Any file `N' is extracted if necessary from an SCCS file named
  645.      either `s.N' or `SCCS/s.N'.  The precise command used is
  646.      `$(GET) $(GFLAGS)'.  The rules for SCCS are terminal (*note
  647.      Match-Anything Pattern Rules: Match-Anything Rules.), so SCCS
  648.      files cannot be generated from another source; they must actually
  649.      exist.
  650.      For the benefit of SCCS, a file `N' is copied from `N.sh' and made
  651.      executable (by everyone).  This is for shell scripts that are
  652.      checked into SCCS.  Since RCS preserves the execution permission
  653.      of a file, you do not need to use this feature with RCS.
  654.      We recommend that you avoid using of SCCS.  RCS is widely held to
  655.      be superior, and is also free.  By choosing free software in place
  656.      of comparable (or inferior) proprietary software, you support the
  657.      free software movement.
  658.    Usually, you want to change only the variables listed in the table
  659. above, which are documented in the following section.
  660.    However, the commands in built-in implicit rules actually use
  661. variables such as `COMPILE.c', `LINK.p', and `PREPROCESS.S', whose
  662. values contain the commands listed above.
  663.    `make' follows the convention that the rule to compile a `.X' source
  664. file uses the variable `COMPILE.X'.  Similarly, the rule to produce an
  665. executable from a `.X' file uses `LINK.X'; and the rule to preprocess a
  666. `.X' file uses `PREPROCESS.X'.
  667.    Every rule that produces an object file uses the variable
  668. `OUTPUT_OPTION'.  `make' defines this variable either to contain `-o
  669. $@', or to be empty, depending on a compile-time option.  You need the
  670. `-o' option to ensure that the output goes into the right file when the
  671. source file is in a different directory, as when using `VPATH' (*note
  672. Directory Search::.).  However, compilers on some systems do not accept
  673. a `-o' switch for object files.  If you use such a system, and use
  674. `VPATH', some compilations will put their output in the wrong place.  A
  675. possible workaround for this problem is to give `OUTPUT_OPTION' the
  676. value `; mv $*.o $@'.
  677. File: make.info,  Node: Implicit Variables,  Next: Chained Rules,  Prev: Catalogue of Rules,  Up: Implicit Rules
  678. Variables Used by Implicit Rules
  679. ================================
  680.    The commands in built-in implicit rules make liberal use of certain
  681. predefined variables.  You can alter these variables in the makefile,
  682. with arguments to `make', or in the environment to alter how the
  683. implicit rules work without redefining the rules themselves.
  684.    For example, the command used to compile a C source file actually
  685. says `$(CC) -c $(CFLAGS) $(CPPFLAGS)'.  The default values of the
  686. variables used are `cc' and nothing, resulting in the command `cc -c'.
  687. By redefining `CC' to `ncc', you could cause `ncc' to be used for all C
  688. compilations performed by the implicit rule.  By redefining `CFLAGS' to
  689. be `-g', you could pass the `-g' option to each compilation.  *All*
  690. implicit rules that do C compilation use `$(CC)' to get the program
  691. name for the compiler and *all* include `$(CFLAGS)' among the arguments
  692. given to the compiler.
  693.    The variables used in implicit rules fall into two classes: those
  694. that are names of programs (like `CC') and those that contain arguments
  695. for the programs (like `CFLAGS').  (The "name of a program" may also
  696. contain some command arguments, but it must start with an actual
  697. executable program name.)  If a variable value contains more than one
  698. argument, separate them with spaces.
  699.    Here is a table of variables used as names of programs in built-in
  700. rules:
  701.      Archive-maintaining program; default `ar'.
  702.      Program for doing assembly; default `as'.
  703.      Program for compiling C programs; default `cc'.
  704. `CXX'
  705.      Program for compiling C++ programs; default `g++'.
  706.      Program for extracting a file from RCS; default `co'.
  707. `CPP'
  708.      Program for running the C preprocessor, with results to standard
  709.      output; default `$(CC) -E'.
  710.      Program for compiling or preprocessing Fortran and Ratfor programs;
  711.      default `f77'.
  712. `GET'
  713.      Program for extracting a file from SCCS; default `get'.
  714. `LEX'
  715.      Program to use to turn Lex grammars into C programs or Ratfor
  716.      programs; default `lex'.
  717.      Program for compiling Pascal programs; default `pc'.
  718. `YACC'
  719.      Program to use to turn Yacc grammars into C programs; default
  720.      `yacc'.
  721. `YACCR'
  722.      Program to use to turn Yacc grammars into Ratfor programs; default
  723.      `yacc -r'.
  724. `MAKEINFO'
  725.      Program to convert a Texinfo source file into an Info file; default
  726.      `makeinfo'.
  727. `TEX'
  728.      Program to make TeX DVI files from TeX source; default `tex'.
  729. `TEXI2DVI'
  730.      Program to make TeX DVI files from Texinfo source; default
  731.      `texi2dvi'.
  732. `WEAVE'
  733.      Program to translate Web into TeX; default `weave'.
  734. `CWEAVE'
  735.      Program to translate C Web into TeX; default `cweave'.
  736. `TANGLE'
  737.      Program to translate Web into Pascal; default `tangle'.
  738. `CTANGLE'
  739.      Program to translate C Web into C; default `ctangle'.
  740.      Command to remove a file; default `rm -f'.
  741.    Here is a table of variables whose values are additional arguments
  742. for the programs above.  The default values for all of these is the
  743. empty string, unless otherwise noted.
  744. `ARFLAGS'
  745.      Flags to give the archive-maintaining program; default `rv'.
  746. `ASFLAGS'
  747.      Extra flags to give to the assembler (when explicitly invoked on a
  748.      `.s' or `.S' file).
  749. `CFLAGS'
  750.      Extra flags to give to the C compiler.
  751. `CXXFLAGS'
  752.      Extra flags to give to the C++ compiler.
  753. `COFLAGS'
  754.      Extra flags to give to the RCS `co' program.
  755. `CPPFLAGS'
  756.      Extra flags to give to the C preprocessor and programs that use it
  757.      (the C and Fortran compilers).
  758. `FFLAGS'
  759.      Extra flags to give to the Fortran compiler.
  760. `GFLAGS'
  761.      Extra flags to give to the SCCS `get' program.
  762. `LDFLAGS'
  763.      Extra flags to give to compilers when they are supposed to invoke
  764.      the linker, `ld'.
  765. `LFLAGS'
  766.      Extra flags to give to Lex.
  767. `PFLAGS'
  768.      Extra flags to give to the Pascal compiler.
  769. `RFLAGS'
  770.      Extra flags to give to the Fortran compiler for Ratfor programs.
  771. `YFLAGS'
  772.      Extra flags to give to Yacc.
  773. File: make.info,  Node: Chained Rules,  Next: Pattern Rules,  Prev: Implicit Variables,  Up: Implicit Rules
  774. Chains of Implicit Rules
  775. ========================
  776.    Sometimes a file can be made by a sequence of implicit rules.  For
  777. example, a file `N.o' could be made from `N.y' by running first Yacc
  778. and then `cc'.  Such a sequence is called a "chain".
  779.    If the file `N.c' exists, or is mentioned in the makefile, no
  780. special searching is required: `make' finds that the object file can be
  781. made by C compilation from `N.c'; later on, when considering how to
  782. make `N.c', the rule for running Yacc is used.  Ultimately both `N.c'
  783. and `N.o' are updated.
  784.    However, even if `N.c' does not exist and is not mentioned, `make'
  785. knows how to envision it as the missing link between `N.o' and `N.y'!
  786. In this case, `N.c' is called an "intermediate file".  Once `make' has
  787. decided to use the intermediate file, it is entered in the data base as
  788. if it had been mentioned in the makefile, along with the implicit rule
  789. that says how to create it.
  790.    Intermediate files are remade using their rules just like all other
  791. files.  The difference is that the intermediate file is deleted when
  792. `make' is finished.  Therefore, the intermediate file which did not
  793. exist before `make' also does not exist after `make'.  The deletion is
  794. reported to you by printing a `rm -f' command that shows what `make' is
  795. doing.  (You can list the target pattern of an implicit rule (such as
  796. `%.o') as a dependency of the special target `.PRECIOUS' to preserve
  797. intermediate files made by implicit rules whose target patterns match
  798. that file's name; see *Note Interrupts::.)
  799.    A chain can involve more than two implicit rules.  For example, it is
  800. possible to make a file `foo' from `RCS/foo.y,v' by running RCS, Yacc
  801. and `cc'.  Then both `foo.y' and `foo.c' are intermediate files that
  802. are deleted at the end.
  803.    No single implicit rule can appear more than once in a chain.  This
  804. means that `make' will not even consider such a ridiculous thing as
  805. making `foo' from `foo.o.o' by running the linker twice.  This
  806. constraint has the added benefit of preventing any infinite loop in the
  807. search for an implicit rule chain.
  808.    There are some special implicit rules to optimize certain cases that
  809. would otherwise by handled by rule chains.  For example, making `foo'
  810. from `foo.c' could be handled by compiling and linking with separate
  811. chained rules, using `foo.o' as an intermediate file.  But what
  812. actually happens is that a special rule for this case does the
  813. compilation and linking with a single `cc' command.  The optimized rule
  814. is used in preference to the step-by-step chain because it comes
  815. earlier in the ordering of rules.
  816. File: make.info,  Node: Pattern Rules,  Next: Last Resort,  Prev: Chained Rules,  Up: Implicit Rules
  817. Defining and Redefining Pattern Rules
  818. =====================================
  819.    You define an implicit rule by writing a "pattern rule".  A pattern
  820. rule looks like an ordinary rule, except that its target contains the
  821. character `%' (exactly one of them).  The target is considered a
  822. pattern for matching file names; the `%' can match any nonempty
  823. substring, while other characters match only themselves.  The
  824. dependencies likewise use `%' to show how their names relate to the
  825. target name.
  826.    Thus, a pattern rule `%.o : %.c' says how to make any file `STEM.o'
  827. from another file `STEM.c'.
  828.    Note that expansion using `%' in pattern rules occurs *after* any
  829. variable or function expansions, which take place when the makefile is
  830. read.  *Note How to Use Variables: Using Variables, and *Note Functions
  831. for Transforming Text: Functions.
  832. * Menu:
  833. * Pattern Intro::               An introduction to pattern rules.
  834. * Pattern Examples::            Examples of pattern rules.
  835. * Automatic::                   How to use automatic variables in the
  836.                                   commands of implicit rules.
  837. * Pattern Match::               How patterns match.
  838. * Match-Anything Rules::        Precautions you should take prior to
  839.                                   defining rules that can match any
  840.                                   target file whatever.
  841. * Canceling Rules::             How to override or cancel built-in rules.
  842. File: make.info,  Node: Pattern Intro,  Next: Pattern Examples,  Up: Pattern Rules
  843. Introduction to Pattern Rules
  844. -----------------------------
  845.    A pattern rule contains the character `%' (exactly one of them) in
  846. the target; otherwise, it looks exactly like an ordinary rule.  The
  847. target is a pattern for matching file names; the `%' matches any
  848. nonempty substring, while other characters match only themselves.
  849.    For example, `%.c' as a pattern matches any file name that ends in
  850. `.c'.  `s.%.c' as a pattern matches any file name that starts with
  851. `s.', ends in `.c' and is at least five characters long.  (There must
  852. be at least one character to match the `%'.)  The substring that the
  853. `%' matches is called the "stem".
  854.    `%' in a dependency of a pattern rule stands for the same stem that
  855. was matched by the `%' in the target.  In order for the pattern rule to
  856. apply, its target pattern must match the file name under consideration,
  857. and its dependency patterns must name files that exist or can be made.
  858. These files become dependencies of the target.
  859.    Thus, a rule of the form
  860.      %.o : %.c ; COMMAND...
  861. specifies how to make a file `N.o', with another file `N.c' as its
  862. dependency, provided that `N.c' exists or can be made.
  863.    There may also be dependencies that do not use `%'; such a dependency
  864. attaches to every file made by this pattern rule.  These unvarying
  865. dependencies are useful occasionally.
  866.    A pattern rule need not have any dependencies that contain `%', or
  867. in fact any dependencies at all.  Such a rule is effectively a general
  868. wildcard.  It provides a way to make any file that matches the target
  869. pattern.  *Note Last Resort::.
  870.    Pattern rules may have more than one target.  Unlike normal rules,
  871. this does not act as many different rules with the same dependencies and
  872. commands.  If a pattern rule has multiple targets, `make' knows that
  873. the rule's commands are responsible for making all of the targets.  The
  874. commands are executed only once to make all the targets.  When searching
  875. for a pattern rule to match a target, the target patterns of a rule
  876. other than the one that matches the target in need of a rule are
  877. incidental: `make' worries only about giving commands and dependencies
  878. to the file presently in question.  However, when this file's commands
  879. are run, the other targets are marked as having been updated themselves.
  880.    The order in which pattern rules appear in the makefile is important
  881. since this is the order in which they are considered.  Of equally
  882. applicable rules, only the first one found is used.  The rules you
  883. write take precedence over those that are built in.  Note however, that
  884. a rule whose dependencies actually exist or are mentioned always takes
  885. priority over a rule with dependencies that must be made by chaining
  886. other implicit rules.
  887. File: make.info,  Node: Pattern Examples,  Next: Automatic,  Prev: Pattern Intro,  Up: Pattern Rules
  888. Pattern Rule Examples
  889. ---------------------
  890.    Here are some examples of pattern rules actually predefined in
  891. `make'.  First, the rule that compiles `.c' files into `.o' files:
  892.      %.o : %.c
  893.              $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
  894. defines a rule that can make any file `X.o' from `X.c'.  The command
  895. uses the automatic variables `$@' and `$<' to substitute the names of
  896. the target file and the source file in each case where the rule applies
  897. (*note Automatic Variables: Automatic.).
  898.    Here is a second built-in rule:
  899.      % :: RCS/%,v
  900.              $(CO) $(COFLAGS) $<
  901. defines a rule that can make any file `X' whatsoever from a
  902. corresponding file `X,v' in the subdirectory `RCS'.  Since the target
  903. is `%', this rule will apply to any file whatever, provided the
  904. appropriate dependency file exists.  The double colon makes the rule
  905. "terminal", which means that its dependency may not be an intermediate
  906. file (*note Match-Anything Pattern Rules: Match-Anything Rules.).
  907.    This pattern rule has two targets:
  908.      %.tab.c %.tab.h: %.y
  909.              bison -d $<
  910. This tells `make' that the command `bison -d X.y' will make both
  911. `X.tab.c' and `X.tab.h'.  If the file `foo' depends on the files
  912. `parse.tab.o' and `scan.o' and the file `scan.o' depends on the file
  913. `parse.tab.h', when `parse.y' is changed, the command `bison -d parse.y'
  914. will be executed only once, and the dependencies of both `parse.tab.o'
  915. and `scan.o' will be satisfied.  (Presumably the file `parse.tab.o'
  916. will be recompiled from `parse.tab.c' and the file `scan.o' from
  917. `scan.c', while `foo' is linked from `parse.tab.o', `scan.o', and its
  918. other dependencies, and it will execute happily ever after.)
  919.